--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit 2cf06e9fe0a5b2b638244b4d752be11382b914cb
Parents : c3dee10
Author : Mark Qvist <mark@unsigned.io>
Date : 2024-03-26T17:17:22+01:00
Fixed startup error on some macOS versions
Changes
Diff
diff --git a/sbapp/sideband/core.py b/sbapp/sideband/core.py
index cb5a42a8..b493a6d4 100644
--- a/sbapp/sideband/core.py
+++ b/sbapp/sideband/core.py
@@ -139,9 +139,9 @@ class SidebandCore():
self.owner_service = owner_service
self.app_dir = plyer.storagepath.get_home_dir()+"/.config/sideband"
- self.cache_dir = self.app_dir+"/cache"
if self.app_dir.startswith("file://"):
self.app_dir = self.app_dir.replace("file://", "")
+ self.cache_dir = self.app_dir+"/cache"
self.rns_configdir = None
if RNS.vendor.platformutils.is_android():
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────